
body {
      margin: 0;
      
      color: #333;
    }

    

    .about-section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 30px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }

    .about-text {
      flex: 1 1 500px;
    }

    .about-text h1 {
      font-size: 28px;
      margin-bottom: 20px;
      /* color: #222; */
      
      padding-right: 10px;
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.9;
      margin-bottom: 15px;
      /* color: #444; */
    }

    .about-image {
      flex: 1 1 400px;
    }

    .about-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .features {
      background: #f5f5f5;
      padding: 50px 20px;
      margin-top: 40px;
      text-align: center;
    }

    .features h2 {
      font-size: 24px;
      margin-bottom: 30px;
      color: #333;
    }

    .features-box {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .feature {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      width: 260px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    

    .feature h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #222;
    }

    .feature p {
      font-size: 14px;
      color: #666;
      line-height: 1.7;
    }

    